Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

front: bump the minor-and-patch group across 1 directory with 25 updates #9406

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 21, 2024

Bumps the minor-and-patch group with 25 updates in the /front directory:

Package From To
@nivo/core 0.80.0 0.87.0
@nivo/line 0.80.0 0.87.0
@reduxjs/toolkit 2.2.8 2.3.0
chroma-js 3.1.1 3.1.2
i18next 23.15.2 23.16.2
openapi-typescript-codegen 0.27.0 0.29.0
react-router-dom 6.26.2 6.27.0
@import-meta-env/prepare 0.1.14 0.2.0
@import-meta-env/unplugin 0.5.2 0.6.0
@playwright/test 1.43.1 1.48.1
@testing-library/jest-dom 6.5.0 6.6.2
@types/lodash 4.17.10 4.17.12
@types/node 22.7.5 22.7.7
@types/react-dom 18.3.0 18.3.1
@vitejs/plugin-react 4.3.2 4.3.3
@vitest/coverage-v8 2.1.2 2.1.3
eslint-plugin-import 2.30.0 2.31.0
eslint-plugin-jsx-a11y 6.10.0 6.10.1
eslint-plugin-vitest 0.3.26 0.5.4
sass 1.79.4 1.80.3
tslib 2.7.0 2.8.0
typescript 5.3.3 5.6.3
vite 5.4.8 5.4.9
vite-plugin-checker 0.6.4 0.8.0
vitest 2.1.2 2.1.3

Updates @nivo/core from 0.80.0 to 0.87.0

Release notes

Sourced from @​nivo/core's releases.

v0.87.0

What's Changed

New Contributors

Full Changelog: plouc/nivo@v0.86.0...v0.87.0

v0.86.0

What's Changed

New Contributors

Full Changelog: plouc/nivo@v0.85.1...v0.86.0

v0.85.1

What's Changed

New Contributors

Full Changelog: plouc/nivo@v0.85.0...v0.85.1

v0.85.0

What's Changed

... (truncated)

Changelog

Sourced from @​nivo/core's changelog.

v0.81.0 (2023-04-26)

Commits
  • da6d6b7 v0.87.0
  • 3ea4911 feat(line): delegate the mesh current element selection to the voronoi package
  • 664647a feat(voronoi): restore touch events support
  • 1d4eba0 feat(theming): exclude non standard properties from text styles
  • acd5ce3 feat(core): remove unused prop types
  • a7097eb feat(text): introduce @​nivo/text package
  • 874a147 feat(tree): add support for labels
  • 349e122 chore(deps): upgrade d3-shape
  • b683244 fix(core): use readonly arrays for props as the libraries do not modify them
  • bca34e4 feat(recompose): completely remove recompose from the project
  • Additional commits viewable in compare view

Updates @nivo/line from 0.80.0 to 0.87.0

Release notes

Sourced from @​nivo/line's releases.

v0.87.0

What's Changed

New Contributors

Full Changelog: plouc/nivo@v0.86.0...v0.87.0

v0.86.0

What's Changed

New Contributors

Full Changelog: plouc/nivo@v0.85.1...v0.86.0

v0.85.1

What's Changed

New Contributors

Full Changelog: plouc/nivo@v0.85.0...v0.85.1

v0.85.0

What's Changed

... (truncated)

Changelog

Sourced from @​nivo/line's changelog.

v0.81.0 (2023-04-26)

Commits
  • da6d6b7 v0.87.0
  • 3ea4911 feat(line): delegate the mesh current element selection to the voronoi package
  • 664647a feat(voronoi): restore touch events support
  • 1d4eba0 feat(theming): exclude non standard properties from text styles
  • 61d411a fix(line): fix snapshot based tests due to the d3-shape upgrade
  • 349e122 chore(deps): upgrade d3-shape
  • 1ac1246 feat(line): passing the whole point in parameter of the AccessorFunc for Line...
  • 26c9135 feat(line): remove prop-types as we're supposed to rely on TS
  • 3f090bc fix(line): fix area rendering (#2558)
  • 6996fc1 v0.86.0
  • Additional commits viewable in compare view

Updates @reduxjs/toolkit from 2.2.8 to 2.3.0

Release notes

Sourced from @​reduxjs/toolkit's releases.

v2.3.0

This feature release adds a new RTK Query upsertQueryEntries util to batch-upsert cache entries more efficiently, passes through additional values for use in prepareHeaders, and exports additional TS types around query options and selectors.

Changelog

upsertQueryEntries

RTK Query already had an upsertQueryData thunk that would upsert a single cache entry. However, some users wanted to upsert many cache entries (potentially hundreds or thousands), and found that upsertQueryData had poor performance in those cases. This is because upsertQueryData runs the full async request handling sequence, including dispatching both pending and fulfilled actions, each of which run the main reducer and update store subscribers. That means there's 2N store / UI updates per item, so upserting hundreds of items becomes extremely perf-intensive.

RTK Query now includes an api.util.upsertQueryEntries action that is meant to handle the batched upsert use case more efficiently. It's a single synchronous action that accepts an array of many {endpointName, arg, value} entries to upsert. This results in a single store update, making this vastly better for performance vs many individual upsertQueryData calls.

We see this as having two main use cases. The first is prefilling the cache with data retrieved from storage on app startup (and it's worth noting that upsertQueryEntries can accept entries for many different endpoints as part of the same array).

The second is to act as a "pseudo-normalization" tool. RTK Query is not a "normalized" cache. However, there are times when you may want to prefill other cache entries with the contents of another endpoint, such as taking the results of a getPosts list endpoint response and prefilling the individual getPost(id) endpoint cache entries, so that components that reference an individual item endpoint already have that data available.

Currently, you can implement the "pseudo-normalization" approach by dispatching upsertQueryEntries in an endpoint lifecycle, like this:

const api = createApi({
  endpoints: (build) => ({
    getPosts: build.query<Post[], void>({
      query: () => '/posts',
      async onQueryStarted(_, { dispatch, queryFulfilled }) {
        const res = await queryFulfilled
        const posts = res.data
    // Pre-fill the individual post entries with the results
    // from the list endpoint query
    dispatch(
      api.util.upsertQueryEntries(
        posts.map((post) =&gt; ({
          endpointName: 'getPost',
          arg: { id: post.id },
          value: post,
        })),
      ),
    )
  },
}),
getPost: build.query&lt;Post, Pick&lt;Post, 'id'&gt;&gt;({
  query: (post) =&gt; `post/${post.id}`,
}),

}),
})

Down the road we may add a new option to query endpoints that would let you provide the mapping function and have it automatically update the corresponding entries.

For additional comparisons between upsertQueryData and upsertQueryEntries, see the upsertQueryEntries API reference.

... (truncated)

Commits
  • 77fb33d Release 2.3.0
  • fa0906e Merge pull request #4291 from reduxjs/pr/fetchBaseQuery-extraOptions
  • 896e4df Drop generic and make extraOptions unknown
  • 41487fd Fix arguments type
  • 1918f13 fix bad inference with an overload?
  • 6ef362f fixup test
  • 3e77381 fetchBaseQuery: expose extraOptions to prepareHeaders
  • 7b50a61 Merge pull request #4561 from reduxjs/feature/4106-rtkq-normalization
  • 3358c13 Fix Parameters headers
  • d38ff98 Merge pull request #4638 from kyletsang/prepareheaders-args
  • Additional commits viewable in compare view

Updates chroma-js from 3.1.1 to 3.1.2

Release notes

Sourced from chroma-js's releases.

v3.1.2

  • fixed a bug in Lch interpolation of hue-less colors
Changelog

Sourced from chroma-js's changelog.

3.1.2

  • fixed a bug in Lch interpolation of hue-less colors
Commits

Updates i18next from 23.15.2 to 23.16.2

Release notes

Sourced from i18next's releases.

v23.16.2

  • perf(size): Adds a isString utility 2248

v23.16.1

  • perf: Optimize size of Formatter 2247

v23.16.0

  • use Intl.getCanonicalLocales function if available to format language code, like suggested in 2244
Changelog

Sourced from i18next's changelog.

23.16.2

  • perf(size): Adds a isString utility 2248

23.16.1

  • perf: Optimize size of Formatter 2247

23.16.0

  • use Intl.getCanonicalLocales function if available to format language code, like suggested in 2244
Commits

Updates openapi-typescript-codegen from 0.27.0 to 0.29.0

Release notes

Sourced from openapi-typescript-codegen's releases.

v0.29.0

Please migrate your projects to use @​hey-api/openapi-ts

The @hey-api/openapi-ts project started as a fork with the goal to resolve the most pressing issues. going forward they are planning to maintain the OpenAPI generator and give it the love it deserves. Please support them with their work and make sure to migrate your projects: https://heyapi.vercel.app/openapi-ts/migrating.html

Fixed

  • Upgraded dependencies

v0.28.0

Fixed

  • Upgraded dependencies
  • Windows issue when resolving external spec files
  • Media-type for falsy bodies except 'undefined'
  • Updated typo in generated header

Added

  • Enabled withXSRFToken for Axios
Changelog

Sourced from openapi-typescript-codegen's changelog.

[0.29.0] - 2024-04-05

Please migrate your projects to use @​hey-api/openapi-ts

The @hey-api/openapi-ts project started as a fork with the goal to resolve the most pressing issues. going forward they are planning to maintain the OpenAPI generator and give it the love it deserves. Please support them with their work and make sure to migrate your projects: https://heyapi.vercel.app/openapi-ts/migrating.html

Fixed

  • Upgraded dependencies

[0.28.0] - 2024-03-19

Fixed

  • Upgraded dependencies
  • Windows issue when resolving external spec files
  • Media-type for falsy bodies except 'undefined'
  • Updated typo in generated header

Added

  • Enabled withXSRFToken for Axios
Commits
  • 118255c Updated readme with migration message
  • 1e04c97 Updated main branch name
  • ccdc9d3 build(deps-dev): Bump puppeteer from 22.6.2 to 22.6.3 (#2105)
  • 7d39fcc build(deps-dev): Bump @​types/node from 20.12.3 to 20.12.4 (#2104)
  • bf0c67f build(deps-dev): Bump @​babel/preset-env from 7.24.3 to 7.24.4 (#2103)
  • 6e595ae build(deps-dev): Bump @​typescript-eslint/parser from 7.4.0 to 7.5.0 (#2101)
  • fd442bc build(deps-dev): Bump @​babel/core from 7.24.3 to 7.24.4 (#2102)
  • 45bbda3 build(deps-dev): Bump @​types/node from 20.12.2 to 20.12.3 (#2100)
  • 2286a8b build(deps-dev): Bump @​typescript-eslint/eslint-plugin (#2099)
  • c812b00 build(deps-dev): Bump puppeteer from 22.6.1 to 22.6.2 (#2098)
  • Additional commits viewable in compare view

Updates react-router-dom from 6.26.2 to 6.27.0

Release notes

Sourced from react-router-dom's releases.

react-router-dom-v5-compat@6.4.0-pre.15

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.15
    • react-router-dom@6.4.0-pre.15

react-router-dom-v5-compat@6.4.0-pre.11

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.11
    • react-router-dom@6.4.0-pre.11

react-router-dom-v5-compat@6.4.0-pre.10

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.10
    • react-router-dom@6.4.0-pre.10

react-router-dom-v5-compat@6.4.0-pre.9

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.9
    • react-router-dom@6.4.0-pre.9

react-router-dom-v5-compat@6.4.0-pre.8

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.8
    • react-router-dom@6.4.0-pre.8

react-router-dom-v5-compat@6.4.0-pre.7

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.7
    • react-router-dom@6.4.0-pre.7

react-router-dom-v5-compat@6.4.0-pre.6

Patch Changes

  • 44bce3c6: Fix react-router-dom peer dependency version
    • react-router@6.4.0-pre.6
    • react-router-dom@6.4.0-pre.6

react-router-dom-v5-compat@6.4.0-pre.5

... (truncated)

Changelog

Sourced from react-router-dom's changelog.

6.27.0

Minor Changes

  • Stabilize unstable_patchRoutesOnNavigation (#11973)
    • Add new PatchRoutesOnNavigationFunctionArgs type for convenience (#11967)
  • Stabilize unstable_dataStrategy (#11974)
  • Stabilize the unstable_flushSync option for navigations and fetchers (#11989)
  • Stabilize the unstable_viewTransition option for navigations and the corresponding unstable_useViewTransitionState hook (#11989)

Patch Changes

  • Fix bug when submitting to the current contextual route (parent route with an index child) when an ?index param already exists from a prior submission (#12003)

  • Fix useFormAction bug - when removing ?index param it would not keep other non-Remix index params (#12003)

  • Fix types for RouteObject within PatchRoutesOnNavigationFunction's patch method so it doesn't expect agnostic route objects passed to patch (#11967)

  • Updated dependencies:

    • react-router@6.27.0
    • @remix-run/router@1.20.0
Commits

Updates @import-meta-env/prepare from 0.1.14 to 0.2.0

Release notes

Sourced from @​import-meta-env/prepare's releases.

flow0.2.0

Changelog: https://github.com/runtime-env/import-meta-env/blob/flow0.2.0/packages/flow/CHANGELOG.md

prepare0.2.0

Changelog: https://github.com/runtime-env/import-meta-env/blob/prepare0.2.0/packages/prepare/CHANGELOG.md

Changelog

Sourced from @​import-meta-env/prepare's changelog.

0.2.0 (2024-09-01)

⚠ BREAKING CHANGES

  • dotenv is a dependency instead of a peer dependency

Features

Commits

Updates @import-meta-env/unplugin from 0.5.2 to 0.6.0

Release notes

Sourced from @​import-meta-env/unplugin's releases.

cli0.6.0

Changelog: https://github.com/iendeavor/import-meta-env/blob/cli0.6.0/packages/cli/CHANGELOG.md

unplugin0.6.0

Changelog: https://github.com/runtime-env/import-meta-env/blob/unplugin0.6.0/packages/unplugin/CHANGELOG.md

cli0.5.6

Changelog: https://github.com/iendeavor/import-meta-env/blob/cli0.5.6/packages/cli/CHANGELOG.md

cli0.5.5

Changelog: https://github.com/iendeavor/import-meta-env/blob/cli0.5.5/packages/cli/CHANGELOG.md

cli0.5.4

Changelog: https://github.com/iendeavor/import-meta-env/blob/cli0.5.4/packages/cli/CHANGELOG.md

cli0.5.3

Changelog: https://github.com/iendeavor/import-meta-env/blob/cli0.5.3/packages/cli/CHANGELOG.md

Changelog

Sourced from @​import-meta-env/unplugin's changelog.

0.6.0 (2024-09-01)

⚠ BREAKING CHANGES

  • dotenv is a dependency instead of a peer dependency

Features

Commits
  • d4d38eb chore(release): @​import-meta-env/unplugin@​0.4.8
  • 9a2f498 build: upgrade peer dependecy version in multiple packages
  • ecb07e9 chore(deps): update dependency typescript to v5.0.3
  • 0f16813 chore(deps): update dependency webpack to v5.77.0
  • 8ac72aa chore(deps): update dependency @​types/node to v18.15.11
  • e9af2e2 chore(deps): update dependency @​types/node to v18.15.10
  • 1ed89fd chore(deps): update dependency rollup to v3.20.2
  • 2518735 chore(deps): update dependency @​types/node to v18.15.9
  • 5f0a603 chore(deps): update dependency @​types/node to v18.15.8
  • 2b41a58 chore(deps): update dependency @​types/node to v18.15.7
  • Additional commits viewable in compare view

Updates @playwright/test from 1.43.1 to 1.48.1

Release notes

Sourced from @​playwright/test's releases.

v1.48.1

Highlights

microsoft/playwright#33023 - [Bug]: command line flag --headed has no effect in ui mode microsoft/playwright#33107 - [REGRESSION]: page.waitForRequest does not get resolved since 1.48.0 microsoft/playwright#33085 - [Bug]: WebSocket route does not handle full URLs in Playwright microsoft/playwright#33052 - [Regression]: Inspector not showing recorded steps microsoft/playwright#33132 - [Bug]: Wrong Ubuntu release name in Dockerfile.noble microsoft/playwright#32996 - [BUG] Trace attachments have small unusable height

Browser Versions

  • Chromium 130.0.6723.19
  • Mozilla Firefox 130.0
  • WebKit 18.0

This version was also tested against the following stable channels:

  • Google Chrome 129
  • Microsoft Edge 129

v1.48.0

WebSocket routing

New methods page.routeWebSocket() and browserContext.routeWebSocket() allow to intercept, modify and mock WebSocket connections initiated in the page. Below is a simple example that mocks WebSocket communication by responding to a "request" with a "response".

await page.routeWebSocket('/ws', ws => {
  ws.onMessage(message => {
    if (message === 'request')
      ws.send('response');
  });
});

See WebSocketRoute for more details.

UI updates

  • New "copy" buttons for annotations and test location in the HTML report.
  • Route method calls like route.fulfill() are not shown in the report and trace viewer anymore. You can see which network requests were routed in the network tab instead.
  • New "Copy as cURL" and "Copy as fetch" buttons for requests in the network tab.

Miscellaneous

Browser Versions

  • Chromium 130.0.6723.19

... (truncated)

Commits

Updates @testing-library/jest-dom from 6.5.0 to 6.6.2

Release notes

Sourced from @​testing-library/jest-dom's releases.

v6.6.2

6.6.2 (2024-10-17)

Bug Fixes

  • remove recursive type reference in vitest types (#636) (4468378)

v6.6.1

6.6.1 (2024-10-16)

Bug Fixes

  • fix lodash import in to-have-selection.js (#642) (ced792e)

v6.6.0

6.6.0 (2024-10-16)

Features

Commits
  • 4468378 fix: remove recursive type reference in vitest types (#636)
  • abba961 docs: add billyjanitsch as a contributor for bug (#644)
  • 9490615 docs: add G-Rath as a contributor for code (#643)
  • ced792e fix: fix lodash import in to-have-selection.js (#642)
  • 9b14804 feat: implement toHaveSelection (#637)
  • f5b0e94 docs: add diegohaz as a contributor for ideas (#640)
  • 68e927e docs: add pwolaq as a contributor for code, and test (#639)
  • 04005db docs: add silviuaavram as a contributor for code, and test (#638)
  • 4723de3 docs: add mibcadet as a contributor for doc (#628)
  • 8fd402a docs: how to update tsconfig for vitest matchers extension (#624)
  • Additional commits viewable in compare view

Updates @types/lodash from 4.17.10 to 4.17.12

Commits

Updates @types/node from 22.7.5 to 22.7.7

Commits

Updates @types/react-dom from 18.3.0 to 18.3.1

Commits

Updates @vitejs/plugin-react from 4.3.2 to 4.3.3

Release notes

Sourced from @​vitejs/plugin-react's releases.

v4.3.3

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}])
  }
return {
plugins: [react({ babel: { plugins: babelPlugins } })],
}
})

Changelog

Sourced from @​vitejs/plugin-react's changelog.

4.3.3 (2024-10-19)

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}])
  }
return {
plugins: [react({ babel: { plugins: babelPlugins } })],
}
})

Commits

Updates @vitest/coverage-v8 from 2.1.2 to 2.1.3
<...

Description has been truncated

@dependabot dependabot bot requested a review from a team as a code owner October 21, 2024 15:22
@dependabot dependabot bot added area:front Work on Standard OSRD Interface modules dependencies Pull requests that update a dependency file labels Oct 21, 2024
Bumps the minor-and-patch group with 25 updates in the /front directory:

| Package | From | To |
| --- | --- | --- |
| [@nivo/core](https://github.com/plouc/nivo/tree/HEAD/packages/core) | `0.80.0` | `0.87.0` |
| [@nivo/line](https://github.com/plouc/nivo/tree/HEAD/packages/line) | `0.80.0` | `0.87.0` |
| [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit) | `2.2.8` | `2.3.0` |
| [chroma-js](https://github.com/gka/chroma.js) | `3.1.1` | `3.1.2` |
| [i18next](https://github.com/i18next/i18next) | `23.15.2` | `23.16.2` |
| [openapi-typescript-codegen](https://github.com/ferdikoomen/openapi-typescript-codegen) | `0.27.0` | `0.29.0` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.26.2` | `6.27.0` |
| [@import-meta-env/prepare](https://github.com/runtime-env/import-meta-env/tree/HEAD/packages/prepare) | `0.1.14` | `0.2.0` |
| [@import-meta-env/unplugin](https://github.com/runtime-env/import-meta-env/tree/HEAD/packages/unplugin) | `0.5.2` | `0.6.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.43.1` | `1.48.1` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.5.0` | `6.6.2` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.17.10` | `4.17.12` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.7.5` | `22.7.7` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.3.0` | `18.3.1` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.3.2` | `4.3.3` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `2.1.2` | `2.1.3` |
| [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.30.0` | `2.31.0` |
| [eslint-plugin-jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y) | `6.10.0` | `6.10.1` |
| [eslint-plugin-vitest](https://github.com/veritem/eslint-plugin-vitest) | `0.3.26` | `0.5.4` |
| [sass](https://github.com/sass/dart-sass) | `1.79.4` | `1.80.3` |
| [tslib](https://github.com/Microsoft/tslib) | `2.7.0` | `2.8.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.3.3` | `5.6.3` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.8` | `5.4.9` |
| [vite-plugin-checker](https://github.com/fi3ework/vite-plugin-checker) | `0.6.4` | `0.8.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.1.2` | `2.1.3` |



Updates `@nivo/core` from 0.80.0 to 0.87.0
- [Release notes](https://github.com/plouc/nivo/releases)
- [Changelog](https://github.com/plouc/nivo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/plouc/nivo/commits/v0.87.0/packages/core)

Updates `@nivo/line` from 0.80.0 to 0.87.0
- [Release notes](https://github.com/plouc/nivo/releases)
- [Changelog](https://github.com/plouc/nivo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/plouc/nivo/commits/v0.87.0/packages/line)

Updates `@reduxjs/toolkit` from 2.2.8 to 2.3.0
- [Release notes](https://github.com/reduxjs/redux-toolkit/releases)
- [Commits](reduxjs/redux-toolkit@v2.2.8...v2.3.0)

Updates `chroma-js` from 3.1.1 to 3.1.2
- [Release notes](https://github.com/gka/chroma.js/releases)
- [Changelog](https://github.com/gka/chroma.js/blob/main/CHANGELOG.md)
- [Commits](gka/chroma.js@v3.1.1...v3.1.2)

Updates `i18next` from 23.15.2 to 23.16.2
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v23.15.2...v23.16.2)

Updates `openapi-typescript-codegen` from 0.27.0 to 0.29.0
- [Release notes](https://github.com/ferdikoomen/openapi-typescript-codegen/releases)
- [Changelog](https://github.com/ferdikoomen/openapi-typescript-codegen/blob/main/CHANGELOG.md)
- [Commits](ferdikoomen/openapi-typescript-codegen@v0.27.0...v0.29.0)

Updates `react-router-dom` from 6.26.2 to 6.27.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/react-router-dom@6.27.0/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.27.0/packages/react-router-dom)

Updates `@import-meta-env/prepare` from 0.1.14 to 0.2.0
- [Release notes](https://github.com/runtime-env/import-meta-env/releases)
- [Changelog](https://github.com/runtime-env/import-meta-env/blob/main/packages/prepare/CHANGELOG.md)
- [Commits](https://github.com/runtime-env/import-meta-env/commits/cli0.2.0/packages/prepare)

Updates `@import-meta-env/unplugin` from 0.5.2 to 0.6.0
- [Release notes](https://github.com/runtime-env/import-meta-env/releases)
- [Changelog](https://github.com/runtime-env/import-meta-env/blob/main/packages/unplugin/CHANGELOG.md)
- [Commits](https://github.com/runtime-env/import-meta-env/commits/cli0.6.0/packages/unplugin)

Updates `@playwright/test` from 1.43.1 to 1.48.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.43.1...v1.48.1)

Updates `@testing-library/jest-dom` from 6.5.0 to 6.6.2
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.5.0...v6.6.2)

Updates `@types/lodash` from 4.17.10 to 4.17.12
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash)

Updates `@types/node` from 22.7.5 to 22.7.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/react-dom` from 18.3.0 to 18.3.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `@vitejs/plugin-react` from 4.3.2 to 4.3.3
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/v4.3.3/packages/plugin-react)

Updates `@vitest/coverage-v8` from 2.1.2 to 2.1.3
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.3/packages/coverage-v8)

Updates `eslint-plugin-import` from 2.30.0 to 2.31.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.30.0...v2.31.0)

Updates `eslint-plugin-jsx-a11y` from 6.10.0 to 6.10.1
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-jsx-a11y@v6.10.0...v6.10.1)

Updates `eslint-plugin-vitest` from 0.3.26 to 0.5.4
- [Release notes](https://github.com/veritem/eslint-plugin-vitest/releases)
- [Commits](vitest-dev/eslint-plugin-vitest@v0.3.26...v0.5.4)

Updates `sass` from 1.79.4 to 1.80.3
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.79.4...1.80.3)

Updates `tslib` from 2.7.0 to 2.8.0
- [Release notes](https://github.com/Microsoft/tslib/releases)
- [Commits](microsoft/tslib@v2.7.0...v2.8.0)

Updates `typescript` from 5.3.3 to 5.6.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.3.3...v5.6.3)

Updates `vite` from 5.4.8 to 5.4.9
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.9/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.9/packages/vite)

Updates `vite-plugin-checker` from 0.6.4 to 0.8.0
- [Release notes](https://github.com/fi3ework/vite-plugin-checker/releases)
- [Changelog](https://github.com/fi3ework/vite-plugin-checker/blob/main/CHANGELOG.md)
- [Commits](https://github.com/fi3ework/vite-plugin-checker/compare/vite-plugin-checker@0.6.4...vite-plugin-checker@0.8.0)

Updates `vitest` from 2.1.2 to 2.1.3
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.3/packages/vitest)

---
updated-dependencies:
- dependency-name: "@nivo/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@nivo/line"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@reduxjs/toolkit"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: chroma-js
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: i18next
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: openapi-typescript-codegen
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@import-meta-env/prepare"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@import-meta-env/unplugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@testing-library/jest-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/lodash"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@vitejs/plugin-react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@vitest/coverage-v8"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: eslint-plugin-import
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: eslint-plugin-jsx-a11y
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: eslint-plugin-vitest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: tslib
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: vite-plugin-checker
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/front/minor-and-patch-9cc964a5e1 branch from 6925deb to 6818beb Compare October 21, 2024 18:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:front Work on Standard OSRD Interface modules dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants